Replace RAMSETE documentation with PathPlanner and Choreo guidance#3118
Open
jasondaming wants to merge 2 commits intowpilibsuite:mainfrom
Open
Replace RAMSETE documentation with PathPlanner and Choreo guidance#3118jasondaming wants to merge 2 commits intowpilibsuite:mainfrom
jasondaming wants to merge 2 commits intowpilibsuite:mainfrom
Conversation
The RAMSETE controller and RamseteCommand have been deprecated and removed from WPILib. This commit updates the trajectory tutorial to: - Recommend PathPlanner and Choreo as modern path planning solutions - Reframe the tutorial as WPILib prerequisites for path planning tools - Provide installation instructions for PathPlannerLib and ChoreoLib - Explain required robot subsystem methods for path following - Add deprecation warnings throughout RAMSETE documentation - Completely rewrite Step 4 to guide teams to third-party tools The tutorial now focuses on the WPILib foundation (characterization, odometry, drive subsystem setup) that teams need before using any path planning tool, then points them to PathPlanner or Choreo docs. Fixes wpilibsuite#2651
Collaborator
|
Are Pathplanner and Choreo really replacements for teams that have differential drivetrains? I remember seeing a team struggling to get Pathplanner working with their differential drivetrain because the documentation was fairly non-existent. And I think Choreo only supports Holonomic drivetrains. |
Member
Author
|
They aren't as well tread these days as swerve but nothing is. I still recommend both of these to teams. I think most teams struggle more with the surrounding kinematics / odometry of diff than actually with PP itself. Choreo does support differential drivetrains as of a couple years ago. I don't know how often it has been used/tested. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates the trajectory tutorial to recommend PathPlanner and Choreo instead of the deprecated RAMSETE controller, while maintaining the tutorial's value as a guide for WPILib prerequisites.
Changes
Updated Files
New Content
Philosophy
The tutorial now teaches the foundation (characterization, odometry, drive subsystem) that teams need for ANY path planning solution, then directs them to modern third-party tools that are more capable and widely used.
Fixes #2651